Skip to main content

Add Transaction Item

Adds a new item in the queue. The status of the item will be "InProgress" and can be consumed without GetTransactionItem activity.

Input

  • Queue Name: The queue where the TransactionItem object is to be added.
    • Type: System.String
    • Required
  • Reference: A reference for the new QueueItem.
    • Type: System.String
    • Required
  • Item Information: A collection of additional information about the specific TransactionItem that is to be added. The information is stored in the item and is used during a transaction processing.
    • Type: System.Collections.Generic.IDictionary<System.String, System.Activities.Argument>
  • Item Information Collection: A collection of additional information about the specific TransactionItem that is to be added. The information is stored in the item and is used during a transaction processing.
    • Type: System.Collections.Generic.IDictionary<System.String, System.Object>

Misc

  • Timeout: Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).
    • Type: System.Int32
    • Required